home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / Shells / zsh / Source / help / cd < prev    next >
Encoding:
Text File  |  1993-10-08  |  997 b   |  22 lines

  1.        cd [ arg ]
  2.        cd old new
  3.        cd +-n Change the current directory.  In the  first  form,
  4.               change  the  current  directory  to  arg, or to the
  5.               value of HOME if arg is not specified.  If  arg  is
  6.               -,  change  to  the  value  of OLDPWD, the previous
  7.               directory.  If a directory named arg is  not  found
  8.               in  the  current  directory  and arg does not begin
  9.               with a slash, search each component  of  the  shell
  10.               parameter cdpath.  If the option CDABLEVARS is set,
  11.               and a parameter named arg exists whose value begins
  12.               with a slash, treat its value as the directory.
  13.  
  14.               The  second  form  of cd substitutes the string new
  15.               for the string old  in  the  name  of  the  current
  16.               directory,  and  tries to change to this new direc-
  17.               tory.
  18.  
  19.               The third form of cd is equivalent to popd.
  20.  
  21.        chdir  Same as cd.
  22.